home *** CD-ROM | disk | FTP | other *** search
/ Gamers Arsenal 1 / Gamers Arsenal (Arsenal Computer).iso / gifreed / gifv.sld < prev    next >
Text File  |  1993-10-11  |  598b  |  23 lines

  1. ;
  2. ; GIFV.SLD
  3. ; This script will take ALL GIF files in the current DIR that are
  4. ; INTERLACED and re-write them so that they are NON-Interlaced GIF
  5. ; Files. It will also (for the heck of it!) write out a BMP file of
  6. ; the same picture for use within Windows. It also shows how to use
  7. ; the SKIPNext command. SkipPrev uses the same concept!
  8. ;
  9.         slide-type-normal
  10.         change-path *.gif
  11. :loop
  12.         ifint :doint
  13.         skipnext :exit
  14.         goto :loop
  15. :doint
  16.         LOADNEXT :EXIT
  17.         adjust-for-windows
  18.         WRITE B
  19.         WRITE G
  20.         goto :loop
  21. :exit
  22.  
  23.